home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / c / xw2.000 / xw2 / xw / documentation / commands / commands.txt < prev    next >
Encoding:
Text File  |  1994-12-05  |  2.3 KB  |  69 lines

  1.  
  2.  
  3. XXbbWW  --  tthhee  XX1111  uusseerr  iinntteerrffaaccee  wwiitthhoouutt  ''bbeellllss  aanndd  wwhhiissttlleess''
  4.  
  5.             (C) 1994 Hendrik Maroske
  6.  
  7. UUssee  aanndd  ddiissttrriibbuuttiioonn  rreessttrriicctteedd  ttoo  tthhee  ffoolllloowwiinngg::
  8. This program is free as long as you do not make
  9. money by selling it. In any other case, you are
  10. enforced to contact the author.
  11.  
  12. I don't care if you create user interfaces with
  13. this program and sell tthheemm, als long as you
  14. do not sell this program. You are enforced to
  15. distribute this program in the same form
  16. you have received it; especially in combination
  17. with user interfaces that you sell.
  18.  
  19. I will distribute C sources as soon as I can.
  20. Until then, you will have to rely on the library
  21. file only, sorry.
  22.  
  23.  
  24. commands.mta
  25. XXbbWW  CCoommmmaannddss::
  26.  
  27.  
  28. FFuunnccttiioonn::  ""ss""  AAdddd  SSttrriinngg  VVAARR--EElleemmeenntt))
  29.           3 Parameters
  30. Syntax:   s( ("VAR-Type") <Length> ("Content") );
  31.  
  32. Params:   VAR-Type is a string, max. 15 chars ("Name")
  33.           Length gives the string space in bytes
  34.           Content is a string with the content to put in
  35. Sample:   "s"( myname 80 ("Text with spaces") );
  36.  
  37. FFuunnccttiioonn::  ""ii""  AAdddd  IInntteeggeerr  VVAARR--EElleemmeenntt))
  38.           2 Parameters
  39. Syntax:   i( ("VAR-Type") <Content> );
  40.  
  41. Params:   VAR-Type is a string, max. 15 chars ("Name")
  42.           Content is an integer number to put in
  43. Sample:   "i"( myname 1234 );
  44.  
  45. FFuunnccttiioonn::  ""cc""  AAdddd  CCoonnssttaanntt  SSttrriinngg  VVAARR--EElleemmeenntt))
  46.           2 Parameters
  47. Syntax:   c( ("VAR-Type") ("Content") );
  48.  
  49. Params:   VAR-Type is a string, max. 15 chars ("Name")
  50.           Content is a string with the content to put in
  51.           Length is determined by content length
  52. Sample:   "c"( myname ("Text with spaces") );
  53.  
  54. FFuunnccttiioonn::  ""dd""  AAdddd  DDoouubbllee  VVAARR--EElleemmeenntt))
  55.           2 Parameters
  56. Syntax:   d( ("VAR-Type") <Content> );
  57.  
  58. Params:   VAR-Type is a string, max. 15 chars ("Name")
  59.           Content is a floating point number to put in
  60. Sample:   "d"( myname 1.234 );
  61.  
  62.  
  63.